@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,700;1,700&family=Noto+Serif&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 22px;
    font-weight: 300;
    font-family: 'Noto Sans', sans-serif;
    background: rgb(38, 37, 37);;
}

.container {
    width: 1800px;
    margin: 0 auto;
    position: relative;
}

.row {
    display: block;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.header {
    height: 80px;
    background: rgb(0, 0, 0);
    text-align: center;
}

.header h1 {
    line-height: 80px;
    color: #ffffff97;
}

.logo {
    height: 60px;
    position: absolute;
    left: 0;
    top: 10px;
}


.menu {
    height: 65px;
    background: #3c2f2f;
    padding-top: 9px;
}

.link-menu {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: 1s;
    font-family: 'Noto Serif', serif;
}

.link-menu:hover {
    background: #700303;
    border-radius: 50px;
}

.content {
    padding: 20px;
    background: rgb(219, 215, 215);
}

.page-title {
    margin-bottom: 20px;
    font-family: 'Noto Serif', serif;
}

blockquote {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left-color: rgb(85, 85, 85);
    border-left-width: 5px;
    border-left-style: solid;
    padding-left: 20px;
    font-style: italic;
    font-weight: 700;
}

.right-img {
    float: right;
    width: 400px;
    border-radius: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.left-img {
    float: left;
    width: 450px;
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 20px;
}


hr {
    margin: 20px 0;
}


#up-arrow {
    position: fixed;
    right: 80px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: rgb(238, 5, 5);
    border-radius: 50%;
    padding: 10px;
}

.circle {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #0af5ff;
}





